golang.org/x/net/internal/timeseries.tsLevel.buckets (field)

18 uses

	golang.org/x/net/internal/timeseries (current package)
		timeseries.go#L93: 	buckets  []Observable      // collections of observations
		timeseries.go#L99: 	l.newest = len(l.buckets) - 1
		timeseries.go#L101: 	for i := range l.buckets {
		timeseries.go#L102: 		if l.buckets[i] != nil {
		timeseries.go#L103: 			l.buckets[i].Clear()
		timeseries.go#L104: 			l.buckets[i] = nil
		timeseries.go#L112: 	l.buckets = make([]Observable, numBuckets)
		timeseries.go#L205: 			if level.buckets[bucketNumber] == nil {
		timeseries.go#L206: 				level.buckets[bucketNumber] = level.provider()
		timeseries.go#L208: 			level.buckets[bucketNumber].Add(observation)
		timeseries.go#L238: 			for _, b := range level.buckets {
		timeseries.go#L248: 			ts.resetObservation(level.buckets[level.newest])
		timeseries.go#L269: 		if l.buckets[index] != nil {
		timeseries.go#L270: 			result.Add(l.buckets[index])
		timeseries.go#L306: 		if l.buckets[index] != nil {
		timeseries.go#L307: 			result.CopyFrom(l.buckets[index])
		timeseries.go#L322: 			l.buckets[i].Multiply(factor)
		timeseries.go#L426: 				srcValue := l.buckets[(srcIndex+l.oldest)%ts.numBuckets]